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

/*

for example, if you want sourcesans-ultrabold, use font-weight: 900

Available weights:

200 Extra Light
300 Light
400 (normal) Normal
600 (semi bold) Semi Bold
700 (bold) Bold
900 (ultra bold) Ultra Bold

*/

@font-face {
  font-family: 'sourcesans';
  font-style: normal;
  font-weight: 200;
  src: url(SourceSansPro-ExtraLight-webfont.woff2) format('woff2'),
	url(SourceSansPro-ExtraLight-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: italic;
  font-weight: 200;
  src: url(SourceSansPro-ExtraLightItalic-webfont.woff2) format('woff2'),
	url(SourceSansPro-ExtraLightItalic-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: normal;
  font-weight: 300;
  src: url(SourceSansPro-Light-webfont.woff2) format('woff2'),
	url(SourceSansPro-Light-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: italic;
  font-weight: 300;
  src: url(SourceSansPro-LightItalic-webfont.woff2) format('woff2'),
	url(SourceSansPro-LightItalic-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: normal;
  font-weight: 400;
  src: url(SourceSansPro-Regular-webfont.woff2) format('woff2'),
	url(SourceSansPro-Regular-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: italic;
  font-weight: 400;
  src: url(SourceSansPro-Italic-webfont.woff2) format('woff2'),
	url(SourceSansPro-Italic-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: normal;
  font-weight: 600;
  src: url(SourceSansPro-Semibold-webfont.woff2) format('woff2'),
	url(SourceSansPro-Semibold-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: italic;
  font-weight: 600;
  src: url(SourceSansPro-SemiboldItalic-webfont.woff2) format('woff2'),
	url(SourceSansPro-SemiboldItalic-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: normal;
  font-weight: 700;
  src: url(SourceSansPro-Bold-webfont.woff2) format('woff2'),
	url(SourceSansPro-Bold-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: italic;
  font-weight: 700;
  src: url(SourceSansPro-BoldItalic-webfont.woff2) format('woff2'),
	url(SourceSansPro-BoldItalic-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: normal;
  font-weight: 900;
  src: url(SourceSansPro-Black-webfont.woff2) format('woff2'),
	url(SourceSansPro-Black-webfont.woff) format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'sourcesans';
  font-style: italic;
  font-weight: 900;
  src: url(SourceSansPro-BlackItalic-webfont.woff2) format('woff2'),
	url(SourceSansPro-BlackItalic-webfont.woff) format('woff');
  font-display: swap;
}