How can I make drop down menu titles bold on my product page?

Hello @empiricalarby :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.accordion__title {
    font-weight: bold;
}

The result

Hope that helps!