/* The public site's two typefaces, served from this host.
 *
 * They used to be linked from fonts.googleapis.com, which meant every anonymous visit to a page
 * that promises "your listening stays yours" first told Google who was reading it. A stylesheet
 * from another company is a request the visitor never chose to make, and the privacy page would
 * have had to disclose it. Serving the files here removes the third party rather than describing
 * it, and it removes two DNS lookups and a render-blocking round trip on the way.
 *
 * Both files are the `latin` subset Google serves, and both are variable fonts on the weight axis:
 * one file covers every weight the site uses. Inter and Sora are both under the SIL Open Font
 * License 1.1, which permits redistribution like this.
 *
 * To refresh them, request the same css2 URL with a current browser User-Agent, take the `latin`
 * @font-face of each family, and download the woff2 it names into public/fonts/. */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin.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: "Sora";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("/fonts/sora-latin.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;
}
