After changing the font-family of my website from Gotham Pro
to Gotham
, I encountered an issue with the styling of numbers that were formatted using my currency formatter function. Strangely, when the  
character is removed, everything appears to be normal. The currency formatting function I used is:
const format = (n) => new Intl.NumberFormat('ru-RU').format(n);
Despite attempting to modify the function in different ways, the problem persists.