/* how to do font declarations
 * https://stackoverflow.com/questions/54081112/what-is-the-modern-font-face-declaration
 */

/* open-sans-regular - latin-ext_latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), url(open-sans-v14-latin-ext_latin-regular.woff2) format("woff2"),
    /* Super Modern Browsers */ url(open-sans-v14-latin-ext_latin-regular.woff) format("woff"),
    /* Modern Browsers */ url(open-sans-v14-latin-ext_latin-regular.ttf) format("truetype"); /* Safari, Android, iOS */
}

/* open-sans-600 - latin-ext_latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), url(open-sans-v14-latin-ext_latin-600.woff2) format("woff2"),
    /* Super Modern Browsers */ url(open-sans-v14-latin-ext_latin-600.woff) format("woff"),
    /* Modern Browsers */ url(open-sans-v14-latin-ext_latin-600.ttf) format("truetype"); /* Safari, Android, iOS */
}
