/* File: fonts.css */

/* "font1" viene assegnato alla famiglia 'Cormorant Garamond' */
@font-face {
  font-family: 'Cormorant Garamond'; /* NOME LOGICO */
  font-style: normal;
  font-weight: 400; 
  font-display: swap;
  src: url('fonts/font1.woff2') format('woff2'); /* NOME DEL FILE FISICO */
}

/* "font2" viene assegnato alla famiglia 'Lato' */
@font-face {
  font-family: 'Lato'; /* NOME LOGICO */
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/font2.woff2') format('woff2'); /* NOME DEL FILE FISICO */
}
