/* Self-hosted fonts for the Pic2Vdo deck. Google Fonts CSS2 API, latin subset only.
   Both faces are SIL Open Font Licence, so embedding in the exported PDF is fine.

   Archivo ships as a VARIABLE font: one file covers the whole 100-900 wght axis. Declaring it
   once with a weight RANGE is the correct form. Do not split this back into four single-weight
   @font-face rules pointing at the same file, which is what the first pass produced: it embeds
   four identical copies in the PDF and relies on browsers clamping the axis per rule. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./Archivo-var.woff2') format('woff2-variations'),
       url('./Archivo-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./ArchivoBlack-400.woff2') format('woff2');
}
