Add Custom Fonts

  1. Login to your Kener dashboard.
  2. Go to the Theme page.
  3. Scroll down to the Fonts section.
  4. Remove Font URL and Font Name
  5. 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;
}