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

/* 

Available weights:

400 (normal) Normal
700 (bold) Bold

*/

@font-face {
  font-family: 'PTSans';
  font-style: normal;
  font-weight: 400;
  src: url(PT-Sans-Web-Regular-webfont.woff2) format('woff2'),
    url(PT-Sans-Web-Regular-webfont.woff) format('woff');
}
@font-face {
  font-family: 'PTSans';
  font-style: italic;
  font-weight: 400;
  src: url(PT-Sans-Web-Italic-webfont.woff2) format('woff2'),
    url(PT-Sans-Web-Italic-webfont.woff) format('woff');
}
@font-face {
  font-family: 'PTSans';
  font-style: normal;
  font-weight: 700;
  src: url(PT-Sans-Web-Bold-webfont.woff2) format('woff2'),
    url(PT-Sans-Web-Bold-webfont.woff) format('woff');
}
@font-face {
  font-family: 'PTSans';
  font-style: italic;
  font-weight: 700;
  src: url(PT-Sans-Web-BoldItalic-webfont.woff2) format('woff2'),
    url(PT-Sans-Web-BoldItalic-webfont.woff) format('woff');
}