Currently trying to build out a flip clock function using the custom code feature on my website. I have a font I’ve designed and uploaded into the readymag type library. How do I call it within the custom code block? I’ve tried inspecting elements for a type block to see how readymag calls it, which gives me a “font-family: custom_150721;” I’ve tried that and also the font name as I input it when uploading to readymag. I’ll list my code for where my font is being called—for reference, I don’t have much coding experience outside of some python and html classes years ago so I am using AI to help me build this widget.
body {
background: transparent;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: custom_150721;
font-style: bold;
}