Hello Jay,
you can use an IP access-list to block the traffic to/from the two IP hosts, however at BGP routing level you can not avoid to advertise your internal summary routes to the ISP.
At prefix-list level you could deny the two host routes, but this does not mean that the following lines will not work.
ip prefix-list INTERNAL_SUMMARIES seq 5 deny 132.189.77.1/32
p prefix-list INTERNAL_SUMMARIES seq 8 deny 132.189.78.1/32
ip prefix-list INTERNAL_SUMMARIES seq 20 permit 132.189.0.0/16 >> to Internet Router
ip prefix-list INTERNAL_SUMMARIES seq 30 permit 172.16.0.0/12 >> to internet Router
ip prefix-list INTERNAL_SUMMARIES seq 40 permit 192.168.0.0/16 >> to Internet Router
But as I have written those two lines are useless as the aggregate si permitted by seq 20 line.
Hope to help
Giuseppe