Including fonts

PDFerret allows the inclusion of any font available at Google Fonts.

You can go to the CSS section of your template and include the font you want to use with the @import rule. Then, you can use the font in your template by defining a CSS rule.

Example

To include the Montserrat font, and apply it to the body tag of your template, you can include this in the CSS section of your template:

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

Tip

You can also load Material Symbols & Icons from Google Fonts. This is a great way to include icons in your documents. See Using Material Symbols & Icons for more information.