/* Self-hosted replacement for the Google Fonts CDN <link rel="stylesheet">
   (fonts.googleapis.com/css2?family=...). Eliminates the render-blocking
   external CSS + font-file round trips PageSpeed Insights flagged
   (~2s render-blocking requests savings) -- see .agents/AGENTS.md.
   Each family ships as a single variable-weight WOFF2 (latin subset only,
   matching what Google served for our three requested weight ranges), so
   one @font-face per family covers the full range via font-weight: lo hi. */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-variable.woff2') format('woff2-variations'), url('/fonts/space-grotesk-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/inter-variable.woff2') format('woff2-variations'), url('/fonts/inter-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-variable.woff2') format('woff2-variations'), url('/fonts/jetbrains-mono-variable.woff2') format('woff2');
}
