/**
 * Self-hosted font stack — closes EXT001 (CTO.Claude, 2026-08-15): the site was
 * calling fonts.googleapis.com at runtime, handing every visitor's IP/UA to
 * Google on a national health domain. Files below are cached locally instead.
 *
 * Latin subset only (U+0000-00FF + basic punctuation) — sufficient for the
 * site's EN/PT/Tetum copy; no Cyrillic/Greek/Vietnamese text is published here.
 * Source: Google Fonts css2 API, Fraunces v38 + Inter Tight v9, fetched 2026-08-21.
 * Both families ship as a single variable-font file per the Google API response;
 * one physical file backs both declared weights per family below.
 */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-tight-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
