/* ============================================================
 * fonts.css — Self-hosted Google Fonts (Inter + JetBrains Mono)
 * ============================================================
 * Source: Google Fonts (Apache-2.0)
 *   Inter:         https://fonts.google.com/specimen/Inter
 *   JetBrains Mono: https://fonts.google.com/specimen/JetBrains+Mono
 *
 * Self-hosting rationale (see SECURITY.md):
 *   - No third-party CDN tracking of visitors
 *   - No external TLS handshake for fonts (faster LCP)
 *   - SRI-friendly: we control the bytes
 *   - Works in regions where fonts.googleapis.com is blocked
 *
 * Files in this folder:
 *   inter-latin.woff2          47 KB  — Inter 300/400/500/600/700 (variable)
 *   jetbrainsmono-latin.woff2   31 KB  — JetBrains Mono 400/500/600 (variable)
 * Total: ~80 KB. The original Google Fonts latin-only subset.
 *
 * Only the Latin subset is included. If you need Cyrillic, Greek, or
 * Vietnamese, add the additional @font-face blocks from
 * https://fonts.googleapis.com/css2?family=Inter:wght@...
 * and drop the corresponding .woff2 files here.
 * ============================================================ */

/* Inter — 5 weights served via single variable-axis file */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/inter-latin.woff2) format('woff2');
}

/* JetBrains Mono — 3 weights served via single variable-axis file */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/jetbrainsmono-latin.woff2) format('woff2');
}
