To maintain consistency with your visual identity, you can use your own fonts in the appearances created with Poool Engage.
To do this, simply import the font into the CSS block of your appearance, just as you would when adding a font to a website.
Go to Appearances > Edit Element Properties > Custom CSS
Option 1: The Font is Available in Google Fonts
Import the font into your CSS block and apply it to your text elements using CSS classes.
@import url('https://fonts.googleapis.com/xxx');
body{
font-family: 'Poppins', sans-serif;
}
Option 2: You are using your own font
@font-face {
font-family: 'MaPolice';
src: url('/fonts/mapolice.woff2') format('woff2'),
font-weight: normal;
font-style: normal;
}
body {
font-family: 'MaPolice', sans-serif;
}
💡 This setting must be applied to each appearance created.
If you have any questions about this, feel free to contact our teams!