each product has their own description on their own page, as shown below, but they all have the same font/size/color.
Do you mean you want them to all have the same font settings, different from what is used on other pages/places? That is so simple that you don't even need one extra stylesheet. All you need is one rule added to your stylesheet:
Code:
#productDescription {
font-style: italic;
font-family: georgia, serif;
color: grey;
font-size: 110%;
}
If you want only part of the description to have this styling, add a class tag to the element containing this part, like
<p class="special1">Text special text.</p>
then add a rule to the stylesheet like
Code:
#productDescription .special1 {
font-style: italic;
font-family: georgia, serif;
color: grey;
font-size: 110%;
}