/* Regular Noto Sans variable font with width and weight */
@font-face {
  font-family: 'Noto Sans';
  src: url('/static/fonts/Noto_Sans/NotoSans-VariableFont_wdth-wght.ttf') format('truetype');
  font-weight: 100 700; /* Bold range capped at 700 to better match max weight of Lato since Noto is its fallback */
  font-stretch: 75% 125%; /* Full width range */
  font-style: normal;
  font-display: swap; /* Optional, for better performance */
}

/* Italic Noto Sans variable font with width and weight */
@font-face {
  font-family: 'Noto Sans';
  src: url('/static/fonts/Noto_Sans/NotoSans-Italic-VariableFont_wdth-wght.ttf') format('truetype');
  font-weight: 100 700; /* Bold range capped at 700 to better match max weight of Lato since Noto is its fallback */
  font-stretch: 75% 125%; /* Full width range */
  font-style: italic;
  font-display: swap; /* Optional */
}