/* =============================================================================
   CueArr — self-hosted fonts.
   Files served from /assets/fonts/*.woff2 (see download-fonts.sh).

   font-display: swap    → text is shown immediately in the system fallback
                            and swapped when the web font finishes loading.
                            Kills the "invisible text until font loads" delay.

   To add a new weight/style: download the .woff2 into /assets/fonts/,
   then add a matching @font-face block below.
   ============================================================================= */

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

@font-face {
  font-family: 'IM Fell English';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/im-fell-english-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'IM Fell English';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/im-fell-english-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'IM Fell English SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/im-fell-english-sc.woff2') format('woff2');
}

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