/**
 * Inter font — auto-hébergé pour PDF + HTML offline.
 * Fichiers TTF : public/fonts/Inter-Regular.ttf + Inter-Bold.ttf.
 * Auteur original : Rasmus Andersson (https://rsms.me/inter/) — Open Font License.
 *
 * Téléchargé depuis Google Fonts CDN le 13/05/2026 pour suppression de la
 * dépendance HTTPS Google dans le PDF (Puppeteer offline-safe).
 *
 * Weights manquants (300, 500, 600) → font-synthesis browser fallback
 * sur Regular (300/500) ou Bold (600). Acceptable pour usage PDF/print.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Inter-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Inter-Bold.ttf') format('truetype');
}
