/**
 * Self-hosted brand fonts — replaces the Google Fonts CDN request per
 * the performance budget in 02-wordpress-architecture.md. Latin +
 * Latin Extended subset only (covers English, French and Swahili
 * text used across the Nairobi/Dubai markets); re-run the font
 * self-hosting step if Arabic or another script is needed later.
 *
 * Variable font files: Bodoni Moda and Plus Jakarta Sans ship as
 * variable fonts, so a single file covers their full weight range —
 * the repeated font-weight blocks below intentionally point at the
 * same file, matching how Google Fonts itself serves them.
 */

@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/bodoni-moda-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/bodoni-moda-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Italiana';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/italiana-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Pinyon Script';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/pinyon-script-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-variable.woff2') format('woff2');
}
