/* Real bug fix, found via a live PageSpeed/Pingdom audit: only .woff was
   ever offered — no .woff2 at all, despite every browser this site's
   analytics could plausibly show supporting it (WOFF2 has been universal
   since ~2020). WOFF2 uses Brotli compression and is reliably ~20-30%
   smaller than WOFF for the exact same font (confirmed on these specific
   files: Poppins weights went from ~70KB to ~50KB each, Oldenburg from
   ~21KB to ~17KB). Listed first in each src list so browsers that
   support it (effectively all of them) use it; .woff stays as the
   fallback for the vanishingly small remainder that don't, so nothing
   regresses for anyone. */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-400.woff2') format('woff2'),
       url('../fonts/poppins-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-500.woff2') format('woff2'),
       url('../fonts/poppins-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-700.woff2') format('woff2'),
       url('../fonts/poppins-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oldenburg Display';
  src: url('../fonts/oldenburg-300.woff2') format('woff2'),
       url('../fonts/oldenburg-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oldenburg Display';
  src: url('../fonts/oldenburg-400.woff2') format('woff2'),
       url('../fonts/oldenburg-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oldenburg Display';
  src: url('../fonts/oldenburg-500.woff2') format('woff2'),
       url('../fonts/oldenburg-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oldenburg Display';
  src: url('../fonts/oldenburg-700.woff2') format('woff2'),
       url('../fonts/oldenburg-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
