/* ═══ fonts ════════════════════════════════════════════════════════════════
   The typeface, served from this origin. No CDN: the sign-in page has to work
   on a machine with no internet, and a font host is a request this product
   should not make.

   It is IBM Plex — Sans, Mono, and four letters of Sans Devanagari — cut down
   by build/fonts.py to what the product prints, and renamed, because IBM's
   licence reserves the name "Plex" for unmodified files. web/fonts/OFL.txt is
   the licence and web/fonts/manifest.json says what each file holds; a test
   compares the two with what is on disk.

   A file of its own rather than the top of tokens.css because the print
   documents (payslip, letter, settlement) are separate documents in a frame:
   they link this and tokens.css and nothing else.

   `swap`, so text is never invisible while a face loads; the two faces every
   screen needs are preloaded from index.html, so in practice nothing swaps.  */

@font-face{
  font-family:"Vetan Sans"; font-style:normal; font-weight:400; font-display:swap;
  src:url("/fonts/vetan-sans-400.woff2") format("woff2");
}
@font-face{
  font-family:"Vetan Sans"; font-style:italic; font-weight:400; font-display:swap;
  src:url("/fonts/vetan-sans-400-italic.woff2") format("woff2");
}
@font-face{
  font-family:"Vetan Sans"; font-style:normal; font-weight:500; font-display:swap;
  src:url("/fonts/vetan-sans-500.woff2") format("woff2");
}
@font-face{
  font-family:"Vetan Sans"; font-style:normal; font-weight:600; font-display:swap;
  src:url("/fonts/vetan-sans-600.woff2") format("woff2");
}
@font-face{
  font-family:"Vetan Mono"; font-style:normal; font-weight:400; font-display:swap;
  src:url("/fonts/vetan-mono-400.woff2") format("woff2");
}
@font-face{
  font-family:"Vetan Mono"; font-style:normal; font-weight:500; font-display:swap;
  src:url("/fonts/vetan-mono-500.woff2") format("woff2");
}
/* वेतन, and only वेतन. A family of its own so that a name typed in Devanagari is
   never drawn half in this face and half in the system's (build/fonts.py). */
@font-face{
  font-family:"Vetan Mark"; font-style:normal; font-weight:400; font-display:swap;
  src:url("/fonts/vetan-mark-400.woff2") format("woff2");
  unicode-range:U+0924,U+0928,U+0935,U+0947;
}
