/* Professional font pairing: Inter + Playfair Display */
/* Self-hosted fonts for maximum reliability and performance */

/* Inter - Modern sans-serif for body text - Light 300 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/inter-300.woff2') format('woff2'),
       url('./fonts/inter-300.ttf') format('truetype');
}

/* Inter - Regular 400 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/inter-400.woff2') format('woff2'),
       url('./fonts/inter-400.ttf') format('truetype');
}

/* Inter - Medium 500 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/inter-500.woff2') format('woff2'),
       url('./fonts/inter-500.ttf') format('truetype');
}

/* Playfair Display - THE BRAND FONT - Regular 400 */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/playfair-display-400.ttf') format('truetype');
}

/* Playfair Display - Medium 500 */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/playfair-display-500.ttf') format('truetype');
}

/* Note: All fonts are now self-hosted for reliability, performance, and GDPR compliance */
