/* Self-hosted fonts — served from the same origin to avoid Google Fonts round-trips.
   Downloaded from Google Fonts (fonts.gstatic.com) and committed to the repository.

   The two files were mapped the wrong way round, which is why every screen
   rendered in italics: the `font-style: normal` face pointed at the italic
   file. Verified against the font name tables rather than the filename —
   public-sans-0 reports subfamily "Regular" (italicAngle 0, macStyle 0) and
   public-sans-1 reports "Italic" (italicAngle -8, macStyle 2). Both are
   variable fonts carrying the full wght 100–900 axis.

   public-sans-0.woff2 = UPRIGHT (normal) weights 100–900
   public-sans-1.woff2 = ITALIC          weights 100–900
*/

/* Public Sans — normal (upright) */
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/public-sans/public-sans-0.woff2') format('woff2');
}

/* Public Sans — italic */
@font-face {
  font-family: 'Public Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/public-sans/public-sans-1.woff2') format('woff2');
}

/* Material Symbols Outlined — variable axes: opsz=24, wght=400, FILL=0, GRAD=0 */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/static/fonts/material-symbols/MaterialSymbolsOutlined.woff') format('woff');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
