/* Self-hosted, deliberately.
 *
 * Loading these from fonts.googleapis.com would send every visitor's IP address
 * to Google just to render text — on a site whose whole argument is that we
 * cannot read your data, and whose privacy page states that nothing loads from
 * another company. Serving them ourselves is what makes that sentence true.
 *
 * Both are SIL Open Font License 1.1, which permits redistribution.
 * Latin subset only: 58KB total, versus ~400KB for every script.
 *
 * font-display: swap — text is readable in a fallback face immediately rather
 * than invisible while the font arrives. On a slow connection that is the
 * difference between a usable page and a blank one.
 */

@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/fonts/spacegrotesk-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
