Once you create your account, you can customize pretty much everything by using CSS and JS.
Adding custom fonts to your website is really easy with the following steps, but another option for Custom Fonts is to change them in the Branding section. With this new feature, you can change fonts effortlessly. Check out the How to Change Your Branding for Your Organization? article to learn how.
However, if you want to change it with CSS and JS, here are the steps:
Custom CSS
Go to the settings page from your admin panel and click the "Custom CSS" button.
Import Font Type
Import the font type you want to use on the page and save. For example:
@import url('https://fonts.googleapis.com/css2?family=Martel:wght@400;600;800&display=swap');
body {
font-family: 'Martel', serif;
background-color: #363652;
}
Related articles: