/* Saphirion — Brand fonts
   Work Sans is the official Saphirion typeface. Vendored same-origin so
   that (a) the deck renders without a Google Fonts network round-trip,
   and (b) the PPTX exporter can embed the font into exported .pptx
   files (dom-to-pptx's font embedder reads raw TrueType buffers).

   Two formats per axis live under ./fonts/:
     - work-sans-{italic-}variable.woff2 — used by the browser (small).
     - work-sans-{italic-}variable.ttf    — used by deck-stage.js's PPTX
       exporter (the embedder cannot decode WOFF2). The TTF files are
       NOT referenced from this CSS; only the exporter loads them.

   Variable axis: weight 100..900.
   License: SIL OFL 1.1 — see ./fonts/OFL.txt. */

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./fonts/work-sans-variable.woff2') format('woff2-variations'),
       url('./fonts/work-sans-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('./fonts/work-sans-italic-variable.woff2') format('woff2-variations'),
       url('./fonts/work-sans-italic-variable.woff2') format('woff2');
}
