/*
 * Geist — a fonte da app, agora também no site.
 *
 * Auto-alojada em vez de vir do Google Fonts: são 4 ficheiros de ~34 KB, o site
 * é estático na Vercel (mesmo CDN das imagens) e assim não há um pedido a
 * terceiros no caminho crítico do primeiro render.
 *
 * `font-display: swap` — o texto aparece de imediato na fonte de sistema e
 * troca quando a Geist chega. Numa landing, ver o título tarde é pior do que
 * vê-lo trocar.
 */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/geist-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/geist-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/geist-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/geist-700.woff2') format('woff2');
}
