/* Self-hosted fonts (woff2) in /assets/fonts/
  - Inter-variable.woff2
  - PlayfairDisplay-400.woff2
  - PlayfairDisplay-700.woff2

  These rules use font-display: swap to avoid FOIT.
*/

/* Inter variable font: covers 100–900 weights in a single WOFF2
   (keeps font-display: swap to avoid FOIT) */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

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