28 lines
724 B
CSS
28 lines
724 B
CSS
@font-face {
|
|
font-family: "Cantarell";
|
|
src: url("Cantarell-Bold.ttf") format("truetype");
|
|
font-weight: 700;
|
|
font-style: bold;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: "Cantarell";
|
|
src: url("Cantarell-Regular.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: "Cantarell";
|
|
src: url("Cantarell-Oblique.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: "Cantarell";
|
|
src: url("Cantarell-BoldOblique.ttf") format("truetype");
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
} |