38 lines
804 B
CSS
38 lines
804 B
CSS
/*!
|
|
* Open Sans typeface https://github.com/FontFaceKit/open-sans
|
|
* License: ???
|
|
*/
|
|
/* FONT PATHS
|
|
* -------------------------- */
|
|
@font-face {
|
|
font-family: "OpenSans";
|
|
src: url("/fonts/OpenSans-Regular.woff2") format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "OpenSans";
|
|
src: url("/fonts/OpenSans-Bold.woff2") format("woff2");
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "OpenSans";
|
|
src: url("/fonts/OpenSans-Italic.woff2") format("woff2");
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "OpenSans";
|
|
src: url("/fonts/OpenSans-BoldItalic.woff2") format("woff2");
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|