/* =============================================
   WEBVORIA — Font self-hosted (Inter)
   ---------------------------------------------
   Per CWV ottimali i font sono self-hosted.
   Inserire i file .woff2 in: assets/fonts/inter/
     - Inter-Regular.woff2   (400)
     - Inter-SemiBold.woff2  (600)
     - Inter-Bold.woff2      (700)
     - Inter-ExtraBold.woff2 (800)
   Finché i file non sono presenti, il sito usa il
   font di sistema (nessuna rottura visiva).
   Download: https://github.com/rsms/inter/releases
   ============================================= */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Inter'), url('../fonts/inter/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Inter SemiBold'), url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Inter Bold'), url('../fonts/inter/Inter-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Inter ExtraBold'), url('../fonts/inter/Inter-ExtraBold.woff2') format('woff2');
}
