/* ============================================================
   Inter font — self-hosted
   Source: https://rsms.me/inter/ (v4.1)
   Downloaded and self-hosted for performance + privacy:
   - Eliminates render-blocking external request to rsms.me
   - No third-party DNS lookup or connection
   - No IP exposure to rsms.me
   - Fonts cached with site's own Cache-Control headers (immutable, 1 year)

   Font family declared:
   - InterVariable  variable font (the only family in this file)
     Also aliased as 'Inter var' for legacy compatibility.

   Usage in global.css:
     --font-sans: 'InterVariable', 'Inter var', 'Inter', 'Segoe UI',
                  system-ui, -apple-system, sans-serif;
   The 'Inter' fallback is a named-family match for system-installed
   Inter (if present); 'InterVariable' is the self-hosted variable font.
   ============================================================ */

@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/InterVariable.woff2') format('woff2');
}
@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/InterVariable-Italic.woff2') format('woff2');
}

/* legacy name "Inter var" (Oct 2023) — kept for backward compatibility
   with any CSS that references the old name */
@font-face {
  font-family: 'Inter var';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/InterVariable.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter var';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/InterVariable-Italic.woff2') format('woff2');
}
