11 lines
252 B
CSS
11 lines
252 B
CSS
@font-face {
|
|
font-family: "Europa Mono";
|
|
src: url("/fonts/Europa-Mono-Medium.otf") format("opentype");
|
|
font-weight: 500; /* Medium weight */
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
* {
|
|
font-family: "Europa Mono", monospace;
|
|
}
|