20 lines
556 B
CSS
20 lines
556 B
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
|
|
|
|
/* Register your custom font family and tell the browser where to find it. */
|
|
@font-face {
|
|
font-family: 'Departure Mono Regular';
|
|
src: url('departureMono/DepartureMono-Regular.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
|
|
:root {
|
|
--sl-font: "Open Sans", serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, blockquote, pre, code, a, nav {
|
|
font-family: 'Departure Mono Regular', sans-serif;
|
|
} |