Custom Style per Post, How to Display Custom-Styled Single post on Homepage?

If you want to get post custom meta for the page assigned as the site front page, use get_option( 'page_on_front' ), which will return that page’s ID.

i.e. change this:

get_post_meta(get_the_ID(), '_custom_css', true)

…to this:

get_post_meta( get_option( 'page_on_front' ), '_custom_css', true )

…on the site front page (is_front_page())