/* =======================================================================
   SELF-HOSTED WEBFONTS (latin subset)
   Replaces the Google Fonts CDN so the overlay renders deterministically
   offline / while recording — no network fetch, no font flash mid-capture.
   Files pulled from the css2 endpoint (Oswald v57, Barlow v13), latin subset.
   Oswald is a single variable file covering weights 400–700.
   ======================================================================= */

/* Oswald — variable weight axis (used at 400/500/600/700) */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('oswald-var.woff2') format('woff2');
}

/* Barlow — static instances */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('barlow-600.woff2') format('woff2');
}
