Where are the files located? In the theme folder or somewhere else?
If the your custom files are located in a css folder inside your theme you can try:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/my_custom_style.css" type="text/css" media="screen" />
or you maybe you can add
@import url("css/my_custom_style.css");
in the main style.css of your theme.