Need to change font and line spacing in a Collection page text- Shopify Brooklyn theme

Hi , Please visit my website link : https://toaiart.com/collections/hand-block-printed-bedsheet

After product grid , I have entered some text :

Top 5 reasons why you should buy hand-block printed bedsheets?

I have changed the heading font to : ‘Clibri’ but the paragraph is still in the default font. Please help me to change paragraph font to ‘Calibri’ and decrease spacing between lines as well.

Attaching a snapshot of my screen, text within the red box needs to change:

I was able to resolve the problem by myself .

I added the following line of code in theme.scss.liquid:

.rte p{
text-align: left;
margin-bottom: 2em;
display: block;
font-family: Calibri;
font-weight: 200;
font-style: normal;
margin: 0 0 0.5em;
letter-spacing: .01em;
line-height: 1;
text-rendering: optimizeLegibility;

}