
/* should be possible to use same font-family name and multiple styles (bold, regular, italic, but it always only shows the last one then and everything becomes bold */
/* montserrat-regular - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  /* font-weight: 400; */
  src: url('Montserrat-Regular.woff2') format('woff2'), /* Super Modern Browsers */
}
/* medium (slightly bolder) */
@font-face {
  font-family: "MontserratMedium";
  font-style: normal;
  font-weight: 500;
  src: url('Montserrat-Medium.woff2') format('woff2'), /* Super Modern Browsers */
}
@font-face {
    font-family: "MontserratBold";
    font-style: normal;
    font-weight: bold;
    src: url('Montserrat-Bold.woff2') format('woff2') ;
}