/* Self-hosted copy of the Newsreader font, the serif display face used
   throughout the public marketing homepage (templates/marketing_home.html).
   Vendored the same way as ../manrope/manrope.css and for the same reason
   - see that file's comment, and mini.py's Content-Security-Policy comment
   ("issue register M1"), for why this app never links a font from
   fonts.googleapis.com/fonts.gstatic.com directly. Only the "latin"
   unicode subset is kept, as two variable-weight woff2 files (one roman,
   one italic) covering every weight/style the design actually uses. */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(newsreader-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url(newsreader-latin-italic.woff2) format('woff2');
}
