/* Site-chrome fonts (landing + legal pages): Archivo (display) + Inter (body).
 *
 * Self-hosted, NOT loaded from Google Fonts — so opening the site makes no request to a Google
 * server and no visitor IP leaks to a third party for fonts (consistent with the app's privacy
 * promise, and with the bundled 3D-text fonts in fonts.css). Both families are SIL Open Font
 * License 1.1 — see LICENSES.txt in this folder.
 *
 * These are the weight-axis VARIABLE woff2 (latin subset), so one file per family covers every
 * weight the pages use (Archivo 500-900, Inter 400-600). font-display:swap keeps text visible
 * while the file loads; if a file is ever missing the family falls back to the -apple-system
 * stack declared in each page.
 *
 * inter.woff2 is shared with fonts.css (the 3D-text feature already declares 'Inter' → inter.woff2).
 */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('archivo.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('inter.woff2') format('woff2');
}
