36 lines
933 B
CSS
36 lines
933 B
CSS
@font-face {
|
|
font-family: "Merriweather";
|
|
src:
|
|
url("/assets/fonts/Merriweather-Regular.woff2") format("woff2"),
|
|
url("/assets/fonts/Merriweather-Regular.woff") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Merriweather";
|
|
src:
|
|
url("/assets/fonts/Merriweather-Italic.woff2") format("woff2"),
|
|
url("/assets/fonts/Merriweather-Italic.woff") format("woff");
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Merriweather";
|
|
src:
|
|
url("/assets/fonts/Merriweather-Bold.woff2") format("woff2"),
|
|
url("/assets/fonts/Merriweather-Bold.woff") format("woff");
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Merriweather";
|
|
src:
|
|
url("/assets/fonts/Merriweather-BoldItalic.woff2") format("woff2"),
|
|
url("/assets/fonts/Merriweather-BoldItalic.woff") format("woff");
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|