/* Complete font-face declarations for all weights */
/* Critical fonts (Playfair 600, Roboto 400) are ALSO inlined in BaseLayout.astro for instant FCP */
/* This file loads async and provides: Roboto 300,500,700 + Playfair 700 + all italics */

/* Playfair Display - Headings */
@font-face {
  font-family: 'Playfair Display';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/playfairdisplay-600-subset.woff2') format('woff2');
}

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

/* Roboto - Body Text (all weights) */
@font-face {
  font-family: 'Roboto';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/roboto-300-subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/roboto-400-subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/roboto-500-subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/roboto-700-subset.woff2') format('woff2');
}

/* Roboto Italic - Emphasis Text */
@font-face {
  font-family: 'Roboto';
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url('/fonts/roboto-300-italic-subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('/fonts/roboto-400-italic-subset.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url('/fonts/roboto-700-italic-subset.woff2') format('woff2');
}
