/* Self-hosted fonts — kit S0 item 2, D45-C. Replaces the two preconnects and
   the fonts.googleapis.com/css2 link that all seven Elite pages carried
   (EDT-28, the EDT-18b recipe). Zero external origins at runtime.

   Both files are byte-identical to clients/elite-worldwide-services/bundle/
   assets/fonts/ (and to the shipped child theme's assets/fonts/) — acquisition
   recipe, source URLs and licences are recorded in bundle/fonts.md; the SIL
   OFL 1.1 licence text sits beside each file as {Family}-OFL.txt.

   Both families ship as VARIABLE woff2 (latin subset), so one @font-face per
   family declares a weight RANGE rather than one rule per static weight. The
   ranges below are the weights the mirror itself requested from Google Fonts
   (Archivo 500–900, Public Sans 400–700); the v1 child theme declares the
   narrower 600–800 / 400–700 because the v1 design used fewer weights. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('../fonts/Archivo-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/PublicSans-Variable.woff2') format('woff2');
}
