/* ============================================================================
   TESTORIA · SELF-HOSTED FONTS
   ----------------------------------------------------------------------------
   Two families only (design system §2.1):
     · Montserrat Alternates 600/700 — display (headings)
     · Mulish 400/500/600/700        — UI / body text
   Files are woff2, subsets latin + cyrillic combined, served from
   wwwroot/fonts. font-display:swap keeps first paint unblocked.
   Mulish 500 and Montserrat Alternates 600 are preloaded and declared inline
   in App.razor with fingerprinted URLs, so they are NOT listed here.
   ========================================================================= */

@font-face {
    font-family: "Mulish";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/mulish-400.woff2") format("woff2");
}

@font-face {
    font-family: "Mulish";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/mulish-600.woff2") format("woff2");
}

@font-face {
    font-family: "Mulish";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/mulish-700.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat Alternates";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/montserrat-alternates-700.woff2") format("woff2");
}
