
/* 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: "Roboto";
  font-style: normal;
  /* font-weight: 400; */
  src: url('RobotoRegular.woff2') format('woff2'), /* Super Modern Browsers */
}
/* medium (slightly bolder) */
@font-face {
  font-family: "RobotoMedium";
  font-style: normal;
  font-weight: 500;
  src: url('RobotoMedium.woff2') format('woff2'), /* Super Modern Browsers */
}
@font-face {
    font-family: "RobotoBold";
    font-style: normal;
    font-weight: bold;
    src: url('RobotoBold.woff2') format('woff2') ;
}