/*
 * Self-hosted replacement for the Google Fonts <link> the auth pages used to
 * fetch (extra DNS + TLS + two round trips before any text rendered).
 * Both files are variable, so one @font-face per family with a weight range
 * covers every weight the site asks for — Inter 400-800, Playfair 600-700.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/inter.woff2) format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(../fonts/playfair-display.woff2) format('woff2');
}
