/* ==========================================================================
   Self-hosted webfonts — no external requests at runtime.
   Both faces are variable fonts (single file covers the whole weight range)
   and both are licensed under the SIL Open Font License 1.1.
   See assets/fonts/LICENSES.md for provenance.
   ========================================================================== */

/* Wordmark / display face.
   Replaces the old header stack, which led with Copperplate (Apple-only) and
   fell through to Cinzel on every other platform. Choosing Cinzel outright
   makes the header render identically everywhere. */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 900;          /* variable: wght 400–900 */
  font-display: swap;
  src: url('cinzel-var-latin.woff2') format('woff2-variations'),
       url('cinzel-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Body face. Same family the old project used, but self-hosted instead of
   pulled from Google Fonts with a render-blocking @import. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;          /* variable: wght 100–900 */
  font-display: swap;
  src: url('inter-var-latin.woff2') format('woff2-variations'),
       url('inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
