/* see https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight for how font-weights match up */

/* 

for example, if you want opensans-extrabold, use font-weight: 900 

Available weights:

100 Thin
300 Light
400 (normal) Normal
500 Medium
700 (bold) Bold
900 Black

*/

@font-face {
  font-family: 'opensans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(opensans-light-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(opensans-lightitalic-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(opensans-regular-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(opensans-italic-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(opensans-semibold-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(opensans-semibolditalic-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(opensans-bold-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(opensans-bolditalic-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(opensans-extrabold-webfont.woff) format('woff');
}
@font-face {
  font-family: 'opensans';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(opensans-extrabolditalic-webfont.woff) format('woff');
}