/* Vet100 — self-hosted webfonts.
 *
 * Replaces the prior <link href="https://fonts.googleapis.com/css2?...">
 * setup so no veteran IP / User-Agent leaks to Google on each page view,
 * and so CSP can drop fonts.googleapis.com (style-src + connect-src) and
 * fonts.gstatic.com (font-src). Source files are SIL Open Font License:
 * Barlow + Barlow Condensed (v13) and Space Grotesk (v22), downloaded
 * from Google Fonts' gstatic CDN at the latin subset for each weight
 * actually used by the codebase. Non-Latin diacritics fall back to the
 * system font (acceptable for ES / TL / VI surfaces; KO already falls
 * back since Barlow has no CJK coverage).
 *
 * If you need to add a new weight, drop the .woff2 into /fonts/ and add
 * one @font-face block — do NOT re-introduce a fonts.googleapis.com URL.
 */

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/barlowcondensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/barlowcondensed-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/barlowcondensed-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/spacegrotesk-700.woff2') format('woff2');
}
