/* Self-Hosted Lato Fonts (Google Fonts alternative) */
/* Benefits: No external requests, faster loading, better privacy */

/* Lato Light (300) */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/Lato-Light.woff2") format('woff2');
}

/* Lato Regular (400) */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Lato-Regular.woff2") format('woff2');
}

/* Lato Bold (700) */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/Lato-Bold.woff2") format('woff2');
}

/* Lato Black (900) */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/Lato-Black.woff2") format('woff2');
}

/* font-display: swap ensures text is visible during font loading */
/* Using only woff2 format (supported by 97% of browsers as of 2025) */

