/* Fuentes locales — sin depender de Google Fonts CDN.
   font-display: swap evita FOIT y muestra texto inmediatamente con la fuente
   fallback hasta que la nuestra cargue. */

@font-face {
  font-family: 'Passion One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/passion-one-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Passion One';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/passion-one-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Passion One';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/static/fonts/passion-one-900.ttf') format('truetype');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/oswald-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/oswald-700.woff2') format('woff2');
}
