/*
 * Roxzone self-hosted web fonts — latin subset, variable axes.
 *
 * Sourced from Google Fonts (Archivo Black v23, Space Grotesk v22 variable,
 * JetBrains Mono v24 variable). Space Grotesk and JetBrains Mono ship as
 * single variable-font files covering all weights — the @font-face range
 * notation (`font-weight: 400 800`) lets the browser interpolate weights.
 *
 * Self-hosted (vs the google-fonts CDN) so first paint is third-party-free
 * (GDPR posture pre-launch) and we don't depend on the gstatic CDN.
 *
 * Unicode-range is the standard Google "latin" subset — covers DE + EN
 * content with common punctuation. If we ever ship Cyrillic / Greek copy
 * we'll need to add the corresponding subset font files.
 */

@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/fonts/archivo-black.woff2) format('woff2');
  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: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/static/fonts/jetbrains-mono.woff2) format('woff2-variations'), url(/static/fonts/jetbrains-mono.woff2) format('woff2');
  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: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/static/fonts/space-grotesk.woff2) format('woff2-variations'), url(/static/fonts/space-grotesk.woff2) format('woff2');
  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;
}
