For a new WordPress theme, I'm using fluid-typography (https://fluid-typography.netlify.app) to scale the fonts accordingly. During development when logged in as admin everything works smoothly. As soon as I log out of WordPress and view the page, the browser suddenly doesn't recognize the "clamp(...)" value for the font size (invalid property value) and uses a fallback. What could be the reason for this?
font-size: 4.0625rem; /* <- used as fallback, when I am not logged in */
font-size: min(max(1.75rem,3.3vw+1rem),4.0625rem);
font-size: clamp(1.75rem,3.3vw+1rem,4.0625rem); /* <- used from the browser when I am logged in */