/*
  Absolute, because this file is not always the base URL these resolve against.

  A relative `url()` in a stylesheet resolves against the stylesheet — which is right while this is
  fetched as `/assets/fonts/.../index.css`, and wrong the moment its text is inlined or adopted
  into a document, where the base becomes the page. On a space that page is `/space/<sid>`, so every
  face was requested as `/space/Ronzino-Bold.woff2` and 404'd, on every navigation, for as long as
  the app has had fonts. Naming the full path is correct under both, and costs nothing.
*/
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 100 1000;
  src: url('/assets/fonts/PublicSans/./PublicSans.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Public Sans';
  font-style: italic;
  font-display: swap;
  font-weight: 100 1000;
  src: url('/assets/fonts/PublicSans/./PublicSans-Italic.woff2') format('woff2-variations');
}
