/* Self-hosted, latin subset only.
 *
 * The source loaded these from fonts.googleapis.com, which costs a DNS lookup,
 * a TLS handshake and a render-blocking stylesheet on a third-party origin
 * before a single glyph paints. Serving them from our own origin removes all
 * three, and font-display: swap means text is readable immediately.
 *
 * Only the LATIN subset is kept — the CDN also serves cyrillic, greek and
 * vietnamese, which this site will never use.
 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/poppins-300.woff2?v=643e38d8') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/poppins-400.woff2?v=3dc5d0c5') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/poppins-600.woff2?v=872e8629') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/poppins-700.woff2?v=197a3cbd') format('woff2');
}
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/dancing-script-700.woff2?v=152843d4') format('woff2');
}
