Add Custom Fonts
- Login to your Kener dashboard.
- Go to the
Theme
page. - Scroll down to the
Fonts
section. - Remove
Font URL
andFont Name
- In Custom CSS add your font
@font-face {
font-family: "CustomFont";
src:
url("/path-to-font/CustomFont.woff2") format("woff2"),
url("/path-to-font/CustomFont.woff") format("woff"),
url("/path-to-font/CustomFont.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
* {
font-family: "CustomFont", sans-serif;
}