How to change price typography on sense 2.0 theme?

Can someone please tell me how I can change the price and compare to price typography across my entire store?

Hi,

You can Add Custom CSS (Identify CSS Classes first)

CSS example

/* Style for regular price */
.price {
  font-family: 'Arial', sans-serif; /* Change to your desired font family */
  font-size: 18px; /* Change to your desired font size */
  font-weight: bold; /* Change to your desired font weight */
  color: #333; /* Change to your desired color */
}

/* Style for compare price */
.compare-price {
  font-family: 'Arial', sans-serif; /* Change to your desired font family */
  font-size: 16px; /* Change to your desired font size */
  font-weight: normal; /* Change to your desired font weight */
  color: #999; /* Change to your desired color */
  text-decoration: line-through; /* Optional: add a line-through effect */
}