/*
  Self-hosted webfonts for Amici Instruments.
  ------------------------------------------
  WHY THIS FILE EXISTS
  fonts.googleapis.com and fonts.gstatic.com are blocked in mainland China.
  Pages that load Jost/Oswald from Google stall on those requests for Chinese
  visitors and then fall back to a default font. Serving the files ourselves
  removes the dependency entirely — and it is faster everywhere else too.

  Use this INSTEAD of the Google Fonts <link>:
      <link rel="stylesheet" href="fonts/fonts.css">     (root pages)
      <link rel="stylesheet" href="../fonts/fonts.css">  (pages in /zh/)

  These are the `latin` subsets only. Chinese text is rendered with the
  reader's system CJK font (PingFang SC on Apple, Microsoft YaHei on Windows) —
  see zh.css. That is deliberate: a self-hosted Chinese webfont would be
  megabytes, and PingFang SC is both already present on the iOS/macOS devices
  our buyers use and a better match for this design than anything we'd ship.

  Both files are variable fonts — one file covers every weight.

  LICENCE: Jost and Oswald are both SIL Open Font License 1.1, which permits
  self-hosting and redistribution.
    Jost   — https://github.com/indestructible-type/Jost
    Oswald — https://github.com/googlefonts/OswaldFont
*/

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;          /* variable — covers 300/400/500/600/700/800 */
  font-display: swap;
  src: url('jost-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;          /* variable */
  font-display: swap;
  src: url('oswald-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
