Hi,
I'm trying to change the custom font of an image stack on my page
// CUSTOM FONT
@font-face {
font-family: 'Inter-Regular';
src: url(https://static1.squarespace.com/static/62df54bd768870226dd259e6/t/64780a92072e2b19256e7255/1685588627122/Inter-Regular.ttf);
}
.image-card-wrapper {
font-family: 'Inter-Regular', sans-serif;
font-size: 12pt;
letter-spacing: 2px;
font-weight: bold;
}
Anyone know why this might not be working?
Thanks :)