Hello everyone
I have set both my stores typeface to Poppins, but I am wanting to change specific text elements to Roboto Mono
(product price in all locations on site and also body copy)
I have attempted using the following codes:
product-block_title {
font-family: robotomono;
font-size: 4rem;
font-weight: regular;
line-height: 1.2;
letter-spacing: 1px;
color: red;
margin: 0;
@font-face {
font-family: “NAME OF FONT”;
src: url(“NAME-OF-FONT-FILE.woff2”) format(“woff2”),
url(“NAME-OF-FONT-FILE.woff”) format(“woff”);
}
product.price { font-family: “NAME OF FONT”!important; }
Both methods fail to work
Am I doing something wrong?
Thank you!
(I am using Paid shopify theme Modular)