/* Self-hosted AGS brand fonts — no third-party font CDN at runtime
   (keeps users' IPs off Google's servers; see privacy.html).

   Type system:
     Mona Sans Expanded  -> titles      (font-stretch: 125%)
     Mona Sans           -> body/UI     (font-stretch: 100%)
     Grenze              -> footnotes & quotes (serif) */

/* Mona Sans — one variable file covers every weight AND width, so the same
   family yields both the normal and Expanded looks via font-stretch. */
@font-face {
    font-family: 'Mona Sans';
    src: url('mona-sans.woff2') format('woff2');
    font-weight: 200 900;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
}

/* Grenze — serif, latin subset (one variable file covers weights 400-600). */
@font-face {
    font-family: 'Grenze';
    src: url('grenze-latin.woff2') format('woff2');
    font-weight: 400 600;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Grenze';
    src: url('grenze-italic-latin.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
