/**
 * Self-hosted Google Fonts
 *
 * Fonts: Cinzel (400, 600, 700) + Roboto (300, 400, 500)
 *
 * Download fonts from: https://gwfh.mranftl.com/fonts
 * - Search "Cinzel", select weights 400, 600, 700, download woff2
 * - Search "Roboto", select weights 300, 400, 500, download woff2
 *
 * Place files in: /assets/fonts/
 */

/* Cinzel - Display font for headings */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cinzel-v26-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/cinzel-v26-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/cinzel-v26-latin-700.woff2') format('woff2');
}

/* Roboto - Body text font */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/roboto-v50-latin-300.woff2') format('woff2');
}

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

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