> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.cookiewow.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to Customize Font Family

Currently, users can change the **font-family** of the Cookie Banner by having a developer add custom CSS to the website. For example:

```css
.cwc-cookie-banner-ui-sdk,
.cwc-cookie-banner-ui-sdk button,
.cwc-cookie-banner-ui-sdk span,
.cwc-cookie-banner-ui-sdk a {
    font-family: 'Kanit', sans-serif !important;
}
```

In the code above, the `font-family: 'Kanit', sans-serif !important;` line defines the font to be used.  
You can replace **'Kanit'** with any other font of your choice (e.g., `'Roboto'`, `'Arial'`, `'Prompt'`, etc.) to match your website’s style.

