/* Self-hosted fonts — no third-party request, no FOIT.
   Replaces the Google Fonts stylesheet. */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('/fonts/sora-var.woff2') format('woff2');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
/* The CSS declared 'Plus Jakarta Sans' and 'Caveat' but never loaded them,
   so body copy silently fell back to a system font and the handwriting
   accent resolved to the browser default cursive. Alias both to the fonts
   that are actually loaded so the design renders as intended. */
:root {
  --fb: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fd: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ibt-hand: 'Sora', 'Inter', sans-serif;
}
