/* https://web.dev/optimize-webfont-loading */

@font-face {
  font-family: 'Lato Black';
  src: local('Lato Black'), url('fonts/LatoLatin-Black.woff2') format('woff2'),
    url('fonts/LatoLatin-Black.woff') format('woff');
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'Lato Light';
  src: local('Lato Light'), url('fonts/LatoLatin-Light.woff2') format('woff2'),
    url('fonts/LatoLatin-Light.woff') format('woff');
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  text-rendering: optimizeLegibility;
}

.font-lato-black {
  font-family: 'Lato Black', sans-serif;
}

.font-lato-light {
  font-family: 'Lato Light', sans-serif;
}
